home *** CD-ROM | disk | FTP | other *** search
/ Risc World 7 / Risc World 7.iso / Software / Issue4 / IYONIX / MANICMINER / SOURCE.ZIP / manicminer-1.6.3 / sndlibs / midas / c / shutdown < prev    next >
Encoding:
Text File  |  2000-12-01  |  241 b   |  14 lines

  1. #include "../../manic.h"
  2. #include "common.h"
  3.  
  4. void
  5. mm_snd_shutdown (void)
  6. {
  7.   MIDASfreeModule (manicmod);
  8.   MIDASfreeSample (diewav);
  9.   MIDASfreeSample (pickwav);
  10.   MIDASfreeSample (jumpwav);
  11.   MIDASstopBackgroundPlay ();
  12.   MIDASclose ();
  13. }
  14.